home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2002 July
/
07_02.iso
/
software
/
xq-xsetup
/
files
/
setup.exe
/
{app}
/
plugins
/
XQ Mouse Options 4.xpl
< prev
next >
Wrap
Text File
|
2001-11-17
|
960b
|
42 lines
"FILE"="Xteq Systems X-Setup Plugin 6.0"
"TYPE"="2"
"COUNT"="1"
"UIPATH 1"="Hardware\Mouse\General Options"
"NAME"="Double Click Speed"
"VERSION"="1.03"
"LANGUAGE"="VBScript"
"TEXT 1"="Speed"
"TEXT 2"="Height"
"DESCRIPTION 1"="This controls the double-click speed. Higher values mean slower double-click speeds. Lower values mean faster double-click speeds."
"DESCRIPTION 2"="To default value is 500."
"AUTHOR"="Xteq Systems"
"CONTACTURL"="http://www.xteq.com"
"COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
"COMMENT 1"=""
"COMMENT 2"=""
sV1="HKCU\Control Panel\Mouse\DoubleClickSpeed"
SUB Plugin_Initialize
i=RegReadValue(sV1)
SetUIElement 1,i
END SUB
SUB Plugin_Apply(ElementIndex,ElementSubIndex)
s=GetUIElement(1)
if len(s)>0 then
Call RegWriteValue(sV1,s,1)
else
if RegValueExists(sV1) then
Call RegDeleteValue(sV1)
end if
end if
END SUB
SUB Plugin_Terminate
END SUB